/* preloader section */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-flow: row nowrap;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	background: #e53939;

}

.sk-spinner-rotating-plane.sk-spinner {
	width: 257px;
	height: 70px;

	-webkit-animation: sk-rotatePlane 2s infinite ease-in-out;
	animation: sk-rotatePlane 2s infinite ease-in-out;
}

@keyframes sk-rotatePlane {
	0% {
		opacity: 1.0;
		transform: scale(1, 1);
	}

	50% {
		opacity: 0.3;
		transform: scale(0.9, 0.9);
	}

	100% {
		opacity: 1.0;
		transform: scale(1, 1);
	}
}

.jialoading {
	font-size: 12px;
	padding-top: 30px;
	text-align: center;
	color: #fff;
	display: block;
	clear: both;
	position: absolute;
	width: 400px;
	left: 50%;
	margin-left: -200px;
	top: 53%;
	opacity: 0.5;
}


/* home section */